home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Essentials / MacApp Documentation / MacApp AppleLink Messages / MacApp.Tech$ Sep 89 / Y0063-Memory management-Sep89 < prev    next >
Encoding:
Text File  |  1989-09-20  |  756 b   |  28 lines  |  [TEXT/GEOL]

  1. Item    3321461                         20-Sept-89        01:34
  2.  
  3. From:   CH0068                          CH DEV Hamilton, Bonaduz
  4.  
  5. To:     MACAPP.TECH$                    MACAPP Tech
  6.  
  7. Sub:    Memory management
  8.  
  9. I have an application which reads large chunks of data (ca. 45k) from a file
  10. and displays them in tabular form.
  11.     I have set the low space reserve in my mem! resource to 50*1024 bytes,
  12.     but MemSpaceIsLow continues to return FALSE even if the debugger says there
  13. are
  14.     only 4k bytes of (permanent) Freemem left. Why ?
  15.  
  16. Here my mem! resource:
  17.  
  18. resource 'mem!'(256,purgeable){
  19.             0,                      /* add to temp. reserve */
  20.             50*1024,        /* add to permanent reserve */
  21.             0                       /* add to stack space */
  22. };    
  23.  
  24.  
  25.     
  26.  
  27.  
  28.